GetNodeForLocationRequest

data class GetNodeForLocationRequest(x: Int, y: Int, includeUserAgentShadowDOM: Boolean?, ignorePointerEventsNone: Boolean?)

Represents request frame that can be used with DOM#getNodeForLocation operation call.

Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is either returned or not.

See also

Constructors

GetNodeForLocationRequest
Link copied to clipboard
fun GetNodeForLocationRequest(x: Int, y: Int, includeUserAgentShadowDOM: Boolean? = null, ignorePointerEventsNone: Boolean? = null)

Properties

ignorePointerEventsNone
Link copied to clipboard
val ignorePointerEventsNone: Boolean? = null
Whether to ignore pointer-events: none on elements and hit test them.
includeUserAgentShadowDOM
Link copied to clipboard
val includeUserAgentShadowDOM: Boolean? = null
False to skip to the nearest non-UA shadow root ancestor (default: false).
x
Link copied to clipboard
val x: Int
X coordinate.
y
Link copied to clipboard
val y: Int
Y coordinate.

Sources

jvm source
Link copied to clipboard